home *** CD-ROM | disk | FTP | other *** search
/ Champak Vol A-4 / (Vol A-4) Vol. A4.iso / Games / maquiagem-lana.swf / scripts / frame_3 / DoAction.as
Text File  |  2007-11-28  |  491b  |  26 lines

  1. stop();
  2. game_start_bt.onRollOver = function()
  3. {
  4.    so1.start(0,1);
  5.    this.game_start_bt_rollover.gotoAndStop(2);
  6. };
  7. game_start_bt.onRollOut = function()
  8. {
  9.    this.game_start_bt_rollover.gotoAndStop(1);
  10. };
  11. game_start_bt.onPress = function()
  12. {
  13.    so1.start(0,1);
  14.    this.gotoAndStop(2);
  15. };
  16. game_start_bt.onRelease = function()
  17. {
  18.    this.gotoAndStop(1);
  19.    gotoAndStop(4);
  20. };
  21. game_start_bt.onReleaseOutside = function()
  22. {
  23.    this.gotoAndStop(1);
  24.    gotoAndStop(4);
  25. };
  26.